.header-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
}
body {
    background-color: #ffffff;
}

@media (max-width: 905px) {
    .header-div {
        padding: 14px 10px;
    }
}

.logo {
    width: 130px;
    height: auto;
}

@media (max-width: 905px) {
    .logo {
        width: 90px;
        height: auto;
    }
}

.navbarv {
    width: 100%;
    align-items: center;
    background-color: #3d3d3d;
    color: white;
}

.main-navbarv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 14px 14px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 14px 10px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #0a0a0a;
    color: #ffffff;
}

.close-btn {
    display: none;
    margin-left: auto;
    margin-right: 2px;
}

.close-icon {
    color: white;
    font-size: 2.0rem;
    text-decoration: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    padding: 5px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.delete-link {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    font-size: 12px;
    padding: 5px;
    text-decoration: none;
}

.delete-link:hover {
    background: #ff0000;
}

.upload-container {
    margin-bottom: 24px;
    width: 100%;
    text-align: start;
}

.upload-container input[type="file"] {
    margin: 10px 0;
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #d3d3d3;
    padding: 4px;
}

.upload-container button {
    background-color: #3d3d3d;
    color: #fff;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-container button:hover {
    background-color: #0a0a0a;
}

.btn-logout {
    background-color: #ff0000;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.delete-button {
    background-color: #ff0000;
    color: white;
    border: none;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
}

.delete-button:hover {
    background-color: #ff0000;
}

@media (max-width: 1330px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        background-color: #3d3d3d;
        text-align: center;
        padding-top: 16px;
        padding-bottom: 40px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .menu-icon {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .nav-links li {
        margin: 14px 0;
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        padding: 14px 10px;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

    .btn-logout {
        background-color: #ff0000;
        color: #fff;
        border: none;
        font-weight: 600;
        font-size: 12px;
        padding: 6px 14px;
        cursor: pointer;
    }
}